LassoScript Utility
Basics Browse Detail

[String->Contains]

Tag Link [String->Contains] Category String
Type Member Source Available No
Support Preferred Version 5.0
Change Unchanged Data Source Any
Output Type Boolean Security None
Implementation LCAPI Sets Lasso 8.5, Lasso 8.0, Lasso 7.0, Lasso 6.0, Lasso 5.0

Description

[String->Contains] returns True if the string contains the parameter as a substring. Requires a single string parameter. The test is not case sensitive.

Syntax

[String Variable->(Contains: 'String Value')]

Parameters

Required Parameters
Pattern The pattern which should be checked.

Examples

To change the color of text if it begins with the word Blue:

Use the [String->Contains] tag within [If] ... [/If] tags. If the field Company_Name contains the word Blue then the company name is colored blue using <font> ... </font> tags, otherwise it is displayed normally.

[If: (Field: 'Company_Name')->(Contains: 'Blue')]
  <font color="blue">[Field: 'Company_Name']</font>
[Else]
  [Field: 'Company_Name']
[/If]

<font color="blue">Blue World</font>

Related Tags

Category Tags